home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / bbs / igmkit10.zip / SRC_CODE.ZIP / GROUP.DOC < prev    next >
Text File  |  1997-06-20  |  2KB  |  40 lines

  1.    Groups Data Record Documentation for Hackers: the Role Playing Game v1.5
  2.                     Copyright (c) 1997 Talon Software
  3.  
  4.  
  5.     1.  This document will explain the contents of the record "ifno" which
  6.         is defined in the file GROUP.PAS.  "ifno" is the record that holds
  7.         all the information about a player in Hackers: the Role Playing Game.
  8.  
  9.     2.  Hackers: the Role Playing Game was made in Pascal, so Talon Software
  10.         only has the source in Pascal form, if you can convert it in to C or
  11.         BASIC we'd love to add it to the IGMKit.
  12.  
  13.     3.  Here are the definitions: 
  14.  
  15.             GName: string[20];                  - Groups Name
  16.             NameLen: integer;                   - Length of Groups Name
  17.             Member: array [1..6] of integer;    - List of Members
  18.             President: integer;                 - President of group (Member
  19.                                                   number one)
  20.             Password: array [1..13] of char;    - Groups Password
  21.             Lengt: integer;                     - Length of Groups password
  22.             Money: single;                      - Amount of money Group has
  23.             BBS: Boolean;                       - Is Group Running a BBS?
  24.             Servers: array[1..45] of Boolean;   - List of servers which the
  25.                                                   Groups BBS has.
  26.             Points: longint;                    - Number of points the group
  27.                                                   has.
  28.             Deleted: Boolean;                   - Has the group been deleted
  29.                                                   or disbanded?
  30.  
  31.  
  32.     4.  WARNING:  It is NOT advised that you move ANY of these variables
  33.         around.  They may not look like they are in a structured format, but
  34.         this is how Hackers: the Role Playing Game will read the information
  35.         off of the GROUPS.DAT file.  You may however change the names of the
  36.         variables/record, just as long as you don't change their types or order.
  37.  
  38.     5.  I hope this helps you in writing an IGM for Hackers: the Role Playing
  39.         Game.  
  40.